﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 0px;
    padding-right: 0px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}


/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }

    .container {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
}

/*Responsive Large Desktop*/
@media (max-width: 1200px) {
    .container {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
}

/*Responsive Normal Desktop*/
@media (max-width: 992px) {
    .container {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
}

/*Responsie Mobile Device*/
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding-left: 0px;
        padding-right: 10px;
    }

    .btn-default {
        color: #333;
        background-color: #fff;
        border-color: #ccc;
        width: 100%;
    }

    .btn-purple {
        color: white;
        background-color: #58585a;
        border-color: #ccc;
        width: 100%;
    }

    .nav {
        padding-left: 20px;
        margin-bottom: 0;
        list-style: none;
    }

    .container > .navbar-header,
    .container-fluid > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-collapse {
        margin-right: auto;
        margin-left: auto;
    }
}

@media all and (min-width:768px) {
    .form-inline .form-control {
        display: inline-block;
        width: 40%;
        vertical-align: middle;
    }
}

.modal-header {
    min-height: 40px;
    padding: 2px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #add162;
    color: #fff;
}

.modal-header-error {
    min-height: 10.42857143px;
    padding: 2px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #d9534f;
    border-color: #d43f3a;
    color: #fff;
}


.modal-title {
    margin: 0;
    line-height: 1.42857143;
    margin-left: 10px;
}

/*Nav Bar and top menu */
.navbar-purple {
    background-color: #4c2177;
    border-color: #080808;
    color: white;
    font-size: larger;
    font-weight: bold;
    padding-left: 10px;
}

.navbar-black {
    background-color: #58585a;
    border-color: #080808;
    color: white;
    font-size: larger;
    font-weight: bold;
    padding-left: 10px;
}

.navbar {
    position: relative;
    min-height: 45px;
    margin-bottom: 0px;
    border: 1px solid transparent;
}

.navbar-inverse {
    background-color: #c7c2bc;
    border-color: #080808;
    color: black;
}

.navbar-nav > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-nav {
    padding-top: 5px;
}

.navbar-inverse .navbar-nav > li > a {
    color: white;
    font-size: 14px;
    background-color: #58585a;
    border: 1px solid white;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: black;
    background-color: #4c2177;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: white;
    cursor: default;
    background-color: #4c2177;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #4c2177;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: White;
    background-color: #4c2177;
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
    text-decoration: none;
    background-color: #4c2177;
}

.nav-tabs > li {
    background-color: #58585a;
    border: 0.5px inset white;
    border-bottom-color: transparent;
}

    .nav-tabs > li > a {
        color: white;
    }
/*General*/

.logo {
    max-height: 30px;
    width: auto;
}

.text-md {
    font-size: medium;
}

.text-lg {
    font-size: x-large;
}

.icon-btn {
    padding: 2px;
}

.GridHdr {
    background-color: #add162;
    color: white;
}

.grid-hover > tbody > tr:hover > th {
    background-color: #add162;
}

.grid-hover > tbody > tr:hover > td {
    background-color: #f5f5f5;
}

.grid-striped > tbody > tr:nth-child(odd) > td {
    background-color: #f9f9f9;
}

.form-group {
    margin-bottom: 1px;
    
}

.form-control {
    display: block;
    width: 100%;
    height: 30px;
    padding: 6px 12px;
    font-size: 13px;
    line-height:1;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.GridHdr a:link {
    color: white;
}

.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    z-index: 1;
}

.centeredMsg {
    position: fixed;
    width: 50%;
    top: 50%;
    left: 10%;
    margin-top: -200px;
    margin-left: -100px;
    z-index: 1;
}

.btn-purple {
    color: white;
    background-color: #58585a;
    border-color: #ccc;
    width: 100%;
}

/*Control for Labels in a form that have label on the right of them instead of text box*/
.cust-label {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    text-align: right;
}

.disabled-txt {
    display: block;
    width: 100%;
    height: 25px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.cust-grid-header {
    color: white;
    font-weight: bold;
    background-color: #58585a;
    border: 1px solid black;
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom:10px;
}

.cust-grid-btn {
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.22857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.cust-disabled {
    opacity: 0.7;
}

.cust-notvisible {
    display: none;
}

@media (min-width: 768px) {
    .cust-modal-dialog {
        width: 1100px;
        margin: 30px auto;
    }
     .cust-raisejob-modal {
        width: 1000px;
        margin: 30px auto;
    }
}

.cust-non-active {
    pointer-events: none;
    cursor: default;
}

navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

.btn-jobview {
    color: black;
    border: 1px solid black;
}

.panel-purple {
  border-color: #ddd;
}
.panel-purple > .panel-heading {
  color: white;
  background-color: #4c2177;
  border-color: #ddd;
}
.panel-purple > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ddd;
}
.panel-purple > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ddd;
}

.cust-small-panel {
    margin-bottom:auto;
}
.cust-img-btn {
-webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.49);
-moz-box-shadow:    4px 4px 5px 0px rgba(50, 50, 50, 0.49);
box-shadow:         4px 4px 5px 0px rgba(50, 50, 50, 0.49);
}

.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
.dropdown-submenu:hover>.dropdown-menu{display:block;}
.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
.dropdown-submenu:hover>a:after{border-left-color:#ffffff;}
.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}

.label-control {
    display: block;
    height: 30px;
    width:100%;
    max-width:280px;
    padding: 6px 12px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.address-control {
    display: block;
    width: 100%;
    max-width:280px;
    padding: 6px 12px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

 .container {
        width: 100%;
        max-width:100%;
        padding-left: 0px;
        padding-right: 0px;
        margin-right: 5px;
        margin-left: 5px;
    }

 .hiddencol
    {
        display:none;
    }
 .NoteText 
 {
     max-width: 300px;
     word-wrap: break-word;
 }